From: Paul Eggert Date: Tue, 5 Apr 2011 20:01:08 +0000 (-0700) Subject: * eval.c (Fsignal): Remove excess argument to 'fatal'. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~4204^2~11 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=8e3403856a6be25c20b7ffe1fcac74a1e722b097;p=emacs.git * eval.c (Fsignal): Remove excess argument to 'fatal'. --- diff --git a/src/ChangeLog b/src/ChangeLog index 6115818a013..a0a38e20c8c 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -2,6 +2,8 @@ Fix more problems found by GCC 4.6.0's static checks. + * eval.c (Fsignal): Remove excess argument to 'fatal'. + * coding.c (EMIT_ONE_BYTE, EMIT_TWO_BYTES): Use unsigned, not int. This avoids several warnings with gcc -Wstrict-overflow. (DECODE_COMPOSITION_RULE): If the rule is invalid, goto invalid_code diff --git a/src/eval.c b/src/eval.c index d1a63a76767..93da7799bec 100644 --- a/src/eval.c +++ b/src/eval.c @@ -1757,7 +1757,7 @@ See also the function `condition-case'. */) data = Fcons (error_symbol, data); string = Ferror_message_string (data); - fatal ("%s", SDATA (string), 0); + fatal ("%s", SDATA (string)); } /* Internal version of Fsignal that never returns.